home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1996 November
/
Chip 11-96.iso
/
workshop
/
other
/
testlin
/
testlin.exe
/
LINUX
/
USR
/
BIN
/
S
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-27
|
241 b
|
6 lines
#!/bin/sh
echo split files in pieces just right for a 1.44MB floppy disk.
echo combine the pieces back to original file with "cat <piece0..n> >>file".
echo this is piece number $2:
dd if=$1 of=$1.$2 bs=1024 skip=`expr 1410 \* $2` count=1410